翻訳と辞書
Words near each other
・ Typhlomangelia adenica
・ Typhlomangelia cariosa
・ Typhlomangelia fluctuosa
・ Typhlomangelia innocentia
・ Typhlomangelia lincta
・ Typhlomangelia maldivica
・ Typhlomangelia nivalis
・ Typhlomangelia polythele
・ Typhlomangelia principalis
・ Typhlomangelia pyrrha
・ Typhlomyrmex
・ Typhlonarke
・ Typhlonectes
・ TypeScript
・ Typesetting
Typestate analysis
・ Typestry
・ Typesun
・ Typewriter
・ Typewriter desk
・ Typewriter Eraser, Scale X
・ Typewriter in the Sky
・ Typewriter ribbon
・ Typewriting Behavior
・ Typex
・ Type–token distinction
・ Type–token relations
・ Typha
・ Typha albida
・ Typha alekseevii


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Typestate analysis : ウィキペディア英語版
Typestate analysis
Typestate analysis, sometimes called protocol analysis, is a form of program analysis employed in programming languages. It is most commonly applied to object-oriented languages. Typestates define valid sequences of operations that can be performed upon an instance of a given type. Typestates, as the name suggests, associate state information with variables of that type. This state information is used to determine at compile-time which operations are valid to be invoked upon an instance of the type. Operations performed on an object that would usually only be executed at run-time are performed upon the type state information which is modified to be compatible with the new state of the object.
Typestates are capable of representing behavioral type refinements such as "method ''A'' must be invoked before method ''B'' is invoked, and method ''C'' may not be invoked in between". Typestates are well-suited to representing resources that use open/close semantics by enforcing semantically valid sequences such as "open then close" as opposed to invalid sequences such as leaving a file in an open state. Such resources include filesystem elements, transactions, connections and protocols. For instance, developers may want to specify that files or sockets must be opened before they are read or written, and that they can no longer be read or written if they have been closed. The name "typestate" stems from the fact that this kind of analysis often models each type of object as a finite state machine. In this state machine, each state has a well-defined set of permitted methods/messages, and method invocations may cause state transitions. Petri nets have also been proposed as a possible behavioral model for use with refinement types.〔(【引用サイトリンク】title=Typestate oriented design - A coloured petri net approach )
The word "typestate" was coined by Strom and Yemini in a 1986 article that described how to use typestate to track the degree of initialisation of variables, guaranteeing that operations would never be applied on improperly initialised data. In recent years, various studies have developed ways of applying the typestate concept to object-oriented languages.
==Approach==

Strom and Yemini (1986) required the set of typestates for a given type to be partially ordered such that a lower typestate can be obtained from a higher one by discarding some information. For example, an int variable in C typically has the typestates "''uninitialized''" < "''initialized''", and a FILE
*
pointer may have the typestates "''unallocated''" < "''allocated, but uninitialized''" < "''initialized, but file not opened''" < "''file opened''". Moreover, Strom and Yemini require that each two typestates have a greatest lower bound, i.e. that the partial order is even a meet-semilattice; and that each order has a least element, always called "⊥".
Their analysis is based on the simplification that each variable ''v'' is assigned only one typestate for each point in the program text; if a point ''p'' is reached by two different execution paths and ''v'' inherits different typestates via each path, then the typestate of ''v'' at ''p'' is taken to be the greatest lower bound of the inherited typestates. For example, in the following C snippet, the variable n inherits the typestate "''initialized''" and "''uninitialized''" from the then and the (empty) else part, respectively, hence it has typestate "''uninitialized''" after the whole conditional statement.

int n; // here, n has typestate "uninitialized"
if (...) else // here, n has typestate "uninitialized" = greatest_lower_bound("initialized","uninitialized")

Every basic operation〔these include language constructs, e.g. += in C, and standard library routines, e.g.fopen()〕 has to be equipped with a typestate transition, i.e. for each parameter the required and ensured typestate before and after the operation, respectively. For example, an operation fwrite(...,fd) requires fd to have typestate "''file opened''". More precisely, an operation may have several outcomes, each of which needs its own typestate transition. For example, the C code FILE
*fd=fopen("foo","r")
sets fd's typestate to "''file opened''" and "''unallocated''" if opening succeeds and fails, respectively.
For each two typestates ''t''1 ''t''2, a unique typestate coercion operation needs to be provided which, when applied to an object of typestate ''t''2, reduces its typestate to ''t''1, possibly by releasing some resources. For example, fclose(fd) coerces fd's typestate from "''file opened''" to "''initialized, but file not opened''".
A program execution is called typestate-correct if
* before each basic operation, all parameters have exactly the typestate required by the operations's typestate transition, and
* on program termination, all variables are in typestate ⊥.〔This aims at ensuring that e.g. all files have been closed, and all malloced memory has been freed. In most programming languages, a variable's lifetime may end before program termination; the notion of typestate-correctness has then to be sharpened accordingly.〕
A program text is called typestate-consistent if it can be transformed, by adding appropriate typestate coercions, to a program whose points can be statically labelled with typestates such that any path allowed by the control flow is typestate-correct. Strom and Yemini give a linear-time algorithm that checks a given program text for typestate-consistency, and computes where to insert which coercion operation, if any.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Typestate analysis」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.